home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / comm / tm420_4.zip / SPITFIRE.SCR < prev    next >
Text File  |  1995-06-14  |  515b  |  25 lines

  1. ;
  2. ; SPITFIRE.SCR is a log on script file for SpitFire BBS
  3. ;
  4.  
  5. string FirstName, LastName, Color
  6. FirstName = "first"          ; put you name here
  7. LastName = "last"
  8. Color = "Y"                  ; "Y"es or "N"o
  9.  
  10. SET AutoStop,On              ; stop script if carrier is lost
  11. Waitfor 0                    ; unlimited waiting time
  12.  
  13. Waitfor "Do you want ANSI COLOR GRAPHICS? [y/N]"
  14. Put Color,
  15.  
  16. Waitfor "first name"
  17. Put FirstName
  18.  
  19. Waitfor "last name"
  20. Put LastName
  21.  
  22. Waitfor "your password:"
  23. Put "^&"
  24.  
  25.